home *** CD-ROM | disk | FTP | other *** search
/ Enter Special 5: Digital Photography / ENTER Special 05.iso / Grafika / Paint Shop Pro 8.0 / psp800ev.exe / Data1.cab / Preset_Texture_Wood_grain.Ps < prev    next >
Encoding:
Text File  |  2003-04-22  |  770 b   |  32 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': 'PSP 7 Preset Converter',
  6.         'Copyright': '',
  7.         'Description': 'Wood grain Texture preset',
  8.         'Host': 'Paint Shop Pro 8',
  9.         'Host Version': '8.00',
  10.     }
  11.  
  12. def Preset_Texture():
  13.     return {
  14.         'GeneralSettings': {
  15.             'AutoActionMode': 0,
  16.             'ExecutionMode': 0
  17.             },
  18.         'Color': (255, 255, 255),
  19.         'Depth': 9,
  20.         'TextureName': 'Woodgrain',
  21.         'Angle': 243,
  22.         'Ambience': 0,
  23.         'Elevation': 31,
  24.         'Size': 100,
  25.         'Intensity': 50,
  26.         'Smoothness': 0,
  27.         'Shininess': 0,
  28.         }
  29.  
  30. def Do(Environment):
  31.     App.Do(Environment, 'Texture', Preset_Texture())
  32.